.about {
        padding: 80px 20px;
        background-color: #ffffff;
        color: #111111;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .about-wrapper {
        max-width: 900px;
    }

    .about h2 {
        font-size: 2.8rem;
        font-weight: bold;
        margin-bottom: 30px;
        position: relative;
        display: inline-block;
    }

    .about h2::after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background-color: #1e90ff;
        margin: 10px auto 0 auto;
        border-radius: 2px;
    }

    .about h3 {
        font-size: 2rem;
        margin-top: 40px;
        margin-bottom: 20px;
        color: #111111;
        position: relative;
        display: inline-block;
    }

    .about h3::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background-color: #1e90ff;
        margin: 10px auto 0 auto;
        border-radius: 2px;
    }

    .about-text p {
        margin-bottom: 20px;
        font-size: 1.1rem;
        line-height: 1.8;
        text-align: justify;
    }

    .about-text strong {
        color: #1e90ff;
    }

    /* Read More Button */
    .read-more-btn {
        margin-top: 20px;
        padding: 12px 30px;
        background-color: #1e90ff;
        color: #ffffff;
        border: none;
        border-radius: 5px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
    }

    .read-more-btn:hover {
        background-color: #166fd1;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .about h2 {
            font-size: 2.2rem;
        }

        .about h3 {
            font-size: 1.6rem;
        }

        .about-text p {
            font-size: 1rem;
        }

        .read-more-btn {
            width: 100%;
        }
    }